home *** CD-ROM | disk | FTP | other *** search
/ Aminet 45 / Aminet 45 (2001)(GTI - Schatztruhe)[!][Oct 2001].iso / Aminet / game / role / ldmud-3.2-bin.lha / mud / doc / efun / pow < prev    next >
Text File  |  2001-04-06  |  358b  |  17 lines

  1. SYNOPSIS
  2.         float pow (int|float base, int|float exp)
  3.  
  4. DESCRIPTION
  5.         The function returns the value of <base> raised to the power of <exp>.
  6.  
  7. EXAMPLES
  8.         pow(-2, 3)   - returns -8.0
  9.         pow(8, 1/3)  - returns 2.0
  10.  
  11. HISTORY
  12.         Introduced in LDMud 3.2.7.
  13.         LDMud 3.2.9 added integers as arguments.
  14.  
  15. SEE ALSO
  16.         exp(E), log(E)
  17.